Description |
---|
This will remove all parametric associativity from an object, leaving it as a "dumb" shape Macro version: 1.0 Last modified: 2011-08-01 FreeCAD version: All Download: ToolBar Icon Author: Yorik |
Author |
Yorik |
Download |
ToolBar Icon |
Links |
Macros recipes How to install macros How to customize toolbars |
Macro Version |
1.0 |
Date last modified |
2011-08-01 |
FreeCAD Version(s) |
All |
Default shortcut |
None |
See also |
None |
This will remove all parametric associativity from an object, leaving it as a "dumb" shape
Before and after:
Remove parametric history.FCMacro
originalObject = FreeCAD.ActiveDocument.ActiveObject newShape = originalObject.Shape.copy() newName = FreeCAD.ActiveDocument.ActiveObject.Name FreeCAD.ActiveDocument.removeObject(newName) newObject = FreeCAD.ActiveDocument.addObject("Part::Feature",newName) newObject.Shape = newShape